home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2005 June (DVD) / DPPRO0605DVD.iso / Install / program files / Borland / BDS / 3.0 / Demos / Delphi.Net / CLR / CDSBrowser / CdsBrowser.dpr < prev    next >
Encoding:
Text File  |  2004-10-22  |  3.4 KB  |  81 lines

  1. program CdsBrowser;
  2.  
  3. {%DelphiDotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\System.dll'}
  4. {%DelphiDotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\System.Data.dll'}
  5. {%DelphiDotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\System.Drawing.dll'}
  6. {%DelphiDotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\System.Windows.Forms.dll'}
  7. {%DelphiDotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\System.XML.dll'}
  8. {$R 'CdsBrowserMain.TMainForm.resources' 'CdsBrowserMain.resx'}
  9. {$R 'AboutBox.TAboutBox.resources' 'AboutBox.resx'}
  10.  
  11. uses
  12.   System.Reflection,
  13.   System.Runtime.CompilerServices,
  14.   System.Windows.Forms,
  15.   CdsBrowserMain in 'CdsBrowserMain.pas' {CdsBrowserMain.TMainForm: System.Windows.Forms.Form},
  16.   AboutBox in 'AboutBox.pas' {AboutBox.TAboutBox: System.Windows.Forms.Form},
  17.   PetrVones.Utils.DataPacket in 'PetrVones.Utils.DataPacket.pas';
  18.  
  19. {$REGION 'Program/Assembly Information'}
  20. //
  21. // General Information about an assembly is controlled through the following
  22. // set of attributes. Change these attribute values to modify the information
  23. // associated with an assembly.
  24. //
  25. [assembly: AssemblyTitle('CDS Browser')]
  26. [assembly: AssemblyDescription('CDS Browser')]
  27. [assembly: AssemblyConfiguration('')]
  28. [assembly: AssemblyCompany('Petr Vones')]
  29. [assembly: AssemblyProduct('CDS Browser')]
  30. [assembly: AssemblyCopyright('')]
  31. [assembly: AssemblyTrademark('')]
  32. [assembly: AssemblyCulture('')]
  33.  
  34. //
  35. // Version information for an assembly consists of the following four values:
  36. //
  37. //      Major Version
  38. //      Minor Version 
  39. //      Build Number
  40. //      Revision
  41. //
  42. // You can specify all the values or you can default the Revision and Build Numbers 
  43. // by using the '*' as shown below:
  44.  
  45. [assembly: AssemblyVersion('1.0.*')]
  46.  
  47. //
  48. // In order to sign your assembly you must specify a key to use. Refer to the 
  49. // Microsoft .NET Framework documentation for more information on assembly signing.
  50. //
  51. // Use the attributes below to control which key is used for signing. 
  52. //
  53. // Notes: 
  54. //   (*) If no key is specified, the assembly is not signed.
  55. //   (*) KeyName refers to a key that has been installed in the Crypto Service
  56. //       Provider (CSP) on your machine. KeyFile refers to a file which contains
  57. //       a key.
  58. //   (*) If the KeyFile and the KeyName values are both specified, the 
  59. //       following processing occurs:
  60. //       (1) If the KeyName can be found in the CSP, that key is used.
  61. //       (2) If the KeyName does not exist and the KeyFile does exist, the key 
  62. //           in the KeyFile is installed into the CSP and used.
  63. //   (*) In order to create a KeyFile, you can use the sn.exe (Strong Name) utility.
  64. //       When specifying the KeyFile, the location of the KeyFile should be
  65. //       relative to the project output directory. For example, if your KeyFile is
  66. //       located in the project directory, you would specify the AssemblyKeyFile 
  67. //       attribute as [assembly: AssemblyKeyFile('mykey.snk')], provided your output
  68. //       directory is the project directory (the default).
  69. //   (*) Delay Signing is an advanced option - see the Microsoft .NET Framework
  70. //       documentation for more information on this.
  71. //
  72. [assembly: AssemblyDelaySign(false)]
  73. [assembly: AssemblyKeyFile('')]
  74. [assembly: AssemblyKeyName('')]
  75. {$ENDREGION}
  76.  
  77. [STAThread]
  78. begin
  79.   Application.Run(CdsBrowserMain.TMainForm.Create);
  80. end.
  81.